home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / DSOs / forum93 / case2 / caller.c < prev    next >
Encoding:
Text File  |  1994-08-02  |  154 b   |  12 lines

  1. int callee(int,int);
  2.  
  3. int foo[100];
  4.  
  5. void
  6. caller(int x, int y) {
  7.  
  8.     foo[0] = callee(x,y);
  9.     foo[1] = callee(x+1,y+1);
  10.     foo[2] = callee(x+2,y+2);
  11. }
  12.